29-Three times table solution.py.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet

for x in range(3,5):
    for y in range(1, 11):
        print ('%d * %d = %d' % (x, y, x*y))
                    

Try it yourself